/* dashboards/admin/modules/Fund Management/fund-management.css */

.fund-module {
  padding: 1.5rem;
}

.fund-module h2, .fund-module h3 {
  color: #0f172a;
  margin-bottom: 1rem;
}

#fundForm {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

input, select {
  padding: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  font-size: 1rem;
}

button[type="submit"] {
  padding: 0.6rem 1rem;
  background-color: #2563eb;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: auto;
}

button[type="submit"]:hover {
  background-color: #1d4ed8;
}

#fundTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

#fundTable th, #fundTable td {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}

#fundTable thead {
  background-color: #0f172a;
  color: white;
}

@media (max-width: 768px) {
  #fundForm {
    flex-direction: column;
  }

  .form-row {
    width: 100%;
  }
}
